github.com/andybalholm/brotli.Writer.input_pos_ (field)

15 uses

	github.com/andybalholm/brotli (current package)
		encode.go#L81: 	input_pos_          uint64
		encode.go#L119: 	return s.input_pos_ - s.last_processed_pos_
		encode.go#L612: 	s.input_pos_ = 0
		encode.go#L652: 	s.input_pos_ += uint64(input_size)
		encode.go#L706: 	var wrapped_input_pos uint32 = wrapPosition(s.input_pos_)
		encode.go#L707: 	s.last_processed_pos_ = s.input_pos_
		encode.go#L831: 	literal_context_mode = chooseContextMode(&s.params, data, uint(wrapPosition(s.last_flush_pos_)), uint(mask), uint(s.input_pos_-s.last_flush_pos_))
		encode.go#L850: 		var processed_bytes uint = uint(s.input_pos_ - s.last_flush_pos_)
		encode.go#L875: 	if !is_last && s.input_pos_ == s.last_flush_pos_ {
		encode.go#L881: 	assert(s.input_pos_ >= s.last_flush_pos_)
		encode.go#L882: 	assert(s.input_pos_ > s.last_flush_pos_ || is_last)
		encode.go#L883: 	assert(s.input_pos_-s.last_flush_pos_ <= 1<<24)
		encode.go#L885: 		var metablock_size uint32 = uint32(s.input_pos_ - s.last_flush_pos_)
		encode.go#L893: 		s.last_flush_pos_ = s.input_pos_
		encode.go#L1081: 		if s.input_pos_ != s.last_flush_pos_ {